home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / PuzzlePuzzle.swf / scripts / DefineButton2_280 / BUTTONCONDACTION on(keyPress Right).as < prev   
Encoding:
Text File  |  2005-08-05  |  163 b   |  10 lines

  1. on(keyPress "<Right>"){
  2.    if(manx < 7)
  3.    {
  4.       sound.gotoandplay("move");
  5.       man.gotoandplay("right");
  6.       manx += 1;
  7.       man._x += 35;
  8.    }
  9. }
  10.